/* PAGE SECTION SPACING (outside the card) */
.tc-industry-hero{
  padding: 26px 18px;
}

/* HERO CARD */
.tc-industry-hero__card{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 250px;                 /* close to screenshot height */
  border-radius: 18px;
  background: #1f3164;           /* deep navy */
  overflow: hidden;
  display: grid;
  place-content: center;
  text-align: center;

  /* subtle inside border like a soft card */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* TEXT */
.tc-industry-hero__title{
  margin: 0;
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.tc-industry-hero__subtitle{
  margin: 8px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
}

/* ============= Decorative items ============= */
.tc-decor{
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

/* Top star (center-ish, small, subtle) */
.tc-decor--star{
  top: 26px;
  left: 64%;
  width: 34px;
  height: 34px;
  opacity: 0.35;

  /* 4-point star style */
  background:
    conic-gradient(from 45deg,
      transparent 0 43%,
      rgba(255,255,255,0.55) 43% 57%,
      transparent 57% 100%);
  border-radius: 8px;
  filter: blur(0.2px);
  transform: rotate(8deg);
}

/* Bottom-right dots (3x3/4x3 feel) */
.tc-decor--dots{
  right: 22px;
  bottom: 18px;
  width: 60px;
  height: 44px;
  opacity: 0.22;

  background:
    radial-gradient(circle, #fff 0 3px, transparent 4px);
  background-size: 14px 14px;
  background-position: 0 0;
  border-radius: 10px;
}

/* Bottom-left asterisk (outlined flower/asterisk look) */
.tc-decor--asterisk{
  left: 22px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  opacity: 0.28;
  border-radius: 14px;

  /* create asterisk arms using multiple linear-gradients */
  background:
    linear-gradient(#fff,#fff) center/26px 2px no-repeat,
    linear-gradient(#fff,#fff) center/2px 26px no-repeat,
    linear-gradient(#fff,#fff) center/2px 26px no-repeat,
    linear-gradient(#fff,#fff) center/26px 2px no-repeat;

  /* rotate the extra arms */
  transform: rotate(18deg);
}
.tc-decor--asterisk::before,
.tc-decor--asterisk::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    linear-gradient(#fff,#fff) center/26px 2px no-repeat,
    linear-gradient(#fff,#fff) center/2px 26px no-repeat;
  opacity: 1;
}
.tc-decor--asterisk::before{ transform: rotate(45deg); }
.tc-decor--asterisk::after{ transform: rotate(-45deg); }

/* Responsive tweaks */
@media (max-width: 600px){
  .tc-industry-hero__card{ height: 170px; }
  .tc-industry-hero__title{ font-size: 30px; }
  .tc-decor--dots{ right: 14px; bottom: 14px; }
  .tc-decor--asterisk{ left: 14px; bottom: 14px; }
}
/* Reusable container */
.tc-container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Section spacing */
.tc-industry-intro{
  background: #ffffff;
  padding: 52px 0 18px; /* top space like screenshot */
}

/* Heading */
.tc-industry-intro__title{
  margin: 0 auto;
  text-align: center;

  /* screenshot looks like a classic/serif heading */
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.25;
  color: #161c28;
  max-width: 980px;
}

/* Paragraph */
.tc-industry-intro__text{
  margin: 18px auto 0;
  text-align: center;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #374151;

  max-width: 980px; /* same centered width feel */
}

/* Mobile */
@media (max-width: 600px){
  .tc-industry-intro{ padding: 36px 0 10px; }
  .tc-industry-intro__text{ font-size: 13px; line-height: 1.75; }
}

/* Container (reuse same as previous sections if you already made one) */
.tc-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Section spacing */
.tc-challenges{
  background: #fff;
  padding: 60px 0 80px;
}

.tc-challenges__top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #161c28;
}
.tc-challenges__dot{ font-size: 18px; transform: translateY(-1px); }

.tc-challenges__title{
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  color: #161c28;
}

/* MAIN GRID */
.tc-challenges__grid{
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 520px 1fr; /* wider center like screenshot */
  gap: 50px;
  align-items: center; /* IMPORTANT: center align all columns */
}

/* Center Image */
.tc-challenges__center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-challenges__img{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

/* Left + Right columns */
.tc-challenges__col{
  display: flex;
  flex-direction: column;
  gap: 40px;                 /* equal vertical spacing like screenshot */
  justify-content: center;   /* IMPORTANT: centers stack vertically */
}

/* Pills - consistent width + alignment */
.tc-pill{
  width: 100%;
  max-width: 520px;          /* same feel on both sides */
  background: #fbf6db;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.35;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Bullet */
.tc-pill__dot{
  margin-right: 14px;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Ensure right column pills start from same x alignment */
.tc-challenges__col--right{
  align-items: flex-end;     /* right side aligns to the right */
}
.tc-challenges__col--right .tc-pill{
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1100px){
  .tc-challenges__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .tc-challenges__col{
    align-items: center;
    gap: 16px;
  }
  .tc-challenges__col--right{
    align-items: center;
  }
  .tc-pill{
    max-width: 720px;
  }
}

.tc-challenges__img{
  object-fit: contain;
}

/* Section spacing */
.tc-solutions{
  background: #ffffff;
  padding: 60px 0 80px;
}

/* Small label on top */
.tc-solutions__top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #161c28;
  font-size: 14px;
  font-weight: 500;
}
.tc-solutions__dot{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Title */
.tc-solutions__title{
  margin: 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  color: #161c28;
}

/* Grid of cards */
.tc-solutions__grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 28px;
}

/* Card styling (light lavender/grey like screenshot) */
.tc-solution-card{
  background: #f4f5ff;            /* soft lavender */
  border-radius: 12px;
  padding: 22px 22px 20px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Card heading */
.tc-solution-card__title{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* Divider line under heading */
.tc-solution-card__divider{
  margin: 12px 0 14px;
  height: 1px;
  background: rgba(17,24,39,0.08);
}

/* Paragraph */
.tc-solution-card__text{
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(17,24,39,0.78);
}

/* Bullet list */
.tc-solution-card__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(17,24,39,0.9);
  font-size: 12px;
  line-height: 1.7;
}
.tc-solution-card__list li{
  margin: 2px 0;
}

/* Responsive */
@media (max-width: 900px){
  .tc-solutions__grid{
    grid-template-columns: 1fr;
  }
  .tc-solution-card{
    padding: 20px 18px;
  }
}



/* Container (reuse if you already have) */
.tc-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Section spacing */
.tc-trust{
  background: #ffffff;
  padding: 64px 0 80px;
}

/* Two-column layout */
.tc-trust__wrap{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* text slightly wider like screenshot */
  gap: 40px;
  align-items: start;
}

/* Left content */
.tc-trust__title{
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 400;
  line-height: 1.18;
  color: #161c28;
}

.tc-trust__subtitle{
  margin: 26px 0 14px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  color: #161c28;
}

/* Bullets like screenshot */
.tc-trust__list{
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(17,24,39,0.9);
}

.tc-trust__list li{
  margin: 2px 0;
}

/* Right gallery (2x2 grid) */
.tc-trust__gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Image cards */
.tc-trust__img{
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

/* Make images fill nicely */
.tc-trust__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Heights to match screenshot feel */
.tc-trust__img--a{ height: 165px; }
.tc-trust__img--b{ height: 165px; }
.tc-trust__img--c{ height: 165px; }
.tc-trust__img--d{ height: 165px; }

/* Responsive */
@media (max-width: 900px){
  .tc-trust__wrap{
    grid-template-columns: 1fr;
  }
  .tc-trust__gallery{
    max-width: 720px;
  }
}
@media (max-width: 520px){
  .tc-trust__gallery{
    grid-template-columns: 1fr;
  }
  .tc-trust__img--a,
  .tc-trust__img--b,
  .tc-trust__img--c,
  .tc-trust__img--d{
    height: 200px;
  }
}

/* =========================
   CASE STUDIES
========================= */

.case-section {
  background: #ffffff;
  padding: 50px 100px;;
}

.case-head {
  text-align: center;
  margin-bottom: 80px;
}

.case-head h2 {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 500;
  color: #0f172a;
}

/* GRID */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* CARD */
.case-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
}

.case-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.case-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-overlay h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
}

/* HOVER */
.case-card:hover .case-overlay {
  opacity: 1;
}
/* =========================
   FAQ SECTION (below WHY)
========================= */

.faq-section {
  background: #ffffff;
  padding:10px 16px 120px;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.faq-top {
  text-align: center;
  margin-bottom: 28px;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.faq-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1f2a5a;
}

.faq-title {
  margin: 16px 0 0;
  font-family: var(--font-heading, "Hedvig Letters Serif", Georgia, serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: #0b1220;
}

/* LIST */
.faq-list {
  margin: 26px auto 0;
  max-width: 620px;
  border-top: 1px solid #eef2f6;
}

.faq-item {
  border-bottom: 1px solid #eef2f6;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  text-align: left;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #1f2a5a;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;

  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 0 16px 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .faq-list {
    max-width: 100%;
  }
  .faq-question {
    font-size: 14px;
  }
}



.testimonial-section {
  background: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.25;
}

/* =========================
   SLIDER WRAPPER
========================= */

.testimonial-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.testimonial-track {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* =========================
   CARD
========================= */

.testimonial-card {
  flex: 0 0 280px;
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;

  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);

  opacity: 0.45;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

/* IMAGE */
.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 16px;
}

/* NAME */
.testimonial-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* ACTIVE CENTER CARD */
.testimonial-card.active {
  opacity: 1;
  transform: scale(1.08);
}

/* =========================
   NAVIGATION BUTTONS
========================= */

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #1f3570;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 5;
}

.testimonial-nav.left {
  left: -10px;
}

.testimonial-nav.right {
  right: -10px;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .testimonial-header h2 {
    font-size: 32px;
  }

  .testimonial-card {
    flex: 0 0 240px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

  .testimonial-section {
    padding: 60px 16px;
  }

  .testimonial-track {
    gap: 18px;
  }

  .testimonial-card {
    flex: 0 0 85%;
    margin: auto;
    opacity: 1;
    transform: scale(1);
  }

  .testimonial-nav {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .testimonial-nav.left {
    left: 6px;
  }

  .testimonial-nav.right {
    right: 6px;
  }
}
/* =========================
   CTA SECTION
========================= */

.cta-section {
  background: #ffffff;
  padding: 50px 100px;
}

.cta-box {
  background: #1f3570;
  border-radius: 28px;
  padding: 20px 40px;
  text-align: center;
  color: #ffffff;
}

/* HEADING */
.cta-box h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 18px;
}

/* TEXT */
.cta-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #e5edff;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 42px;
  background: #ffffff;
  color: #1f3570;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

/* =========================
   PRODUCT SECTION
========================= */
.product-section {
  background: #2f2f2f;
  padding: 60px 0;
  color: #ffffff;
  overflow: hidden;
}

/* HEADER */
.product-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label.dark {
  color: #cbd5f5;
}

.product-header h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
}

/* SLIDER */
.product-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BUTTONS */
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #1f3570;
  font-size: 25px;
  cursor: pointer;
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: #1f3570;
  color: #fff;
}

/* Position arrows beside active card */
.slider-btn.left {
  left: calc(50% - 210px);
}

.slider-btn.right {
  left: calc(50% + 165px);
}

/* SLIDES WRAPPER */
.slides-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

/* SLIDE CARD */
.product-slide {
  width: 300px;
  height: 450px;
  background: #1f1f1f;
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.product-slide img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

.product-slide h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-slide p {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* ACTIVE SLIDE */
.product-slide.active {
  opacity: 1;
  transform: scale(1);
  background: #1b1b1b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .slider-btn.left {
    left: 10px;
  }

  .slider-btn.right {
    left: auto;
    right: 10px;
  }

  .slides-wrapper {
    gap: 10px;
  }

  .product-slide {
    width: 260px;
    height: auto;
  }
}